home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / MacPerl ƒ / Perl Source ƒ / README < prev    next >
Text File  |  1993-04-26  |  7KB  |  152 lines

  1.  
  2.             Perl Kit, Version 4.0
  3.  
  4.         Copyright (c) 1989,1990,1991, Larry Wall
  5.               All rights reserved.
  6.  
  7.     This program is free software; you can redistribute it and/or modify
  8.     it under the terms of the "Perl Artistic License" which comes with this Kit.
  9.  
  10.     This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
  13.         Perl Artistic License for more details.
  14.  
  15.     You should have received a copy of the Perl Artistic License with this
  16.     Kit, in the file named "Perl Artistic License".  If not, I'll be glad to provide one.
  17.  
  18. --------------------------------------------------------------------------
  19.  
  20. Perl is a language that combines some of the features of C, sed, awk and shell.
  21. See the manual page for more hype.  There's also a Nutshell Handbook published
  22. by O'Reilly & Assoc.  Their U.S. number is 1-800-338-6887 (dev-nuts) and
  23. their international number is 1-707-829-0515.  E-mail to nuts@ora.com.
  24.  
  25. Note that this and other email addresses, referred to in this MPW Perl package,
  26. may be used via AppleLink by appending @INTERNET# to the address.
  27.  
  28. Perl will probably not run on machines with a small address space.
  29.  
  30. Please read all the directions below before you proceed any further, and
  31. then follow them carefully.
  32.  
  33. After you have unpacked your kit, you should have all the files listed
  34. in MANIFEST.
  35.  
  36. Installation
  37.  
  38. 1)  Run Configure.  This will figure out various things about your system.
  39.     Some things Configure will figure out for itself, other things it will
  40.     ask you about.  It will then proceed to make config.h, config.sh, and
  41.     Makefile.  If you're a hotshot, run Configure -d to take all the
  42.     defaults and then edit config.sh to patch up any flaws.
  43.  
  44.     You might possibly have to trim # comments from the front of Configure
  45.     if your sh doesn't handle them, but all other # comments will be taken
  46.     care of.
  47.  
  48.     (If you don't have sh, you'll have to copy the sample file config.H to
  49.     config.h and edit the config.h to reflect your system's peculiarities.)
  50.  
  51. 2)  Glance through config.h to make sure system dependencies are correct.
  52.     Most of them should have been taken care of by running the Configure script.
  53.  
  54.     If you have any additional changes to make to the C definitions, they
  55.     can be done in cflags.SH.  For instance, to turn off the optimizer
  56.     on eval.c, find the line in the switch structure for eval.c and
  57.     put the command $optimize='-g' before the ;;.  You will probably
  58.     want to change the entry for teval.c too.  To change the C flags
  59.     for all the files, edit config.sh and change either $ccflags or $optimize.
  60.  
  61. 3)  make depend
  62.  
  63.     This will look for all the includes and modify Makefile accordingly.
  64.     Configure will offer to do this for you.
  65.  
  66. 4)  make
  67.  
  68.     This will attempt to make perl in the current directory.
  69.  
  70.     If you can't compile successfully, try adding a -DCRIPPLED_CC flag.
  71.     (Just because you get no errors doesn't mean it compiled right!)
  72.     This simplifies some complicated expressions for compilers that
  73.     get indigestion easily.  If that has no effect, try turning off
  74.     optimization.  If you have missing routines, you probably need to
  75.     add some library or other, or you need to undefine some feature that
  76.     Configure thought was there but is defective or incomplete.
  77.  
  78.     Some compilers will not compile or optimize the larger files without
  79.     some extra switches to use larger jump offsets or allocate larger
  80.     internal tables.  You can customize the switches for each file in
  81.     cflags.SH.  It's okay to insert rules for specific files into
  82.     Makefile.SH, since a default rule only takes effect in the
  83.     absence of a specific rule.
  84.  
  85.     Most of the following hints are now done automatically by Configure.
  86.  
  87.         For further information on compiling Perl for non-Macintosh systems, 
  88.         please refer to this section in a version of Perl distributed via Internet in 
  89.         either of the following locations:
  90.  
  91.         For further information on compiling Perl for non-Macintosh systems, 
  92.         please refer to this section in a version of Perl distributed via Internet in 
  93.         either of the following locations:
  94.  
  95.         nic.switch.ch                software/mac/perl
  96.         ftp.eunet.ch                    software/mac/perl
  97.  
  98.     If you want to build a version of Perl for non-Macintosh systems *only*, you
  99.     probably should go directly with the original Perl distribution, which can be found
  100.     at:
  101.  
  102.     jpl-devvax.jpl.nasa.gov    pub/perl.4.0
  103.  
  104.     If you get syntax errors on '(', try -DCRIPPLED_CC or -DBADSWITCH or both.
  105.     Machines with half-implemented dbm routines will need to #undef ODBM & NDBM.
  106.     C's that don't try to restore registers on longjmp() may need -DJMPCLOBBER.
  107.     (Try this if you get random glitches.)
  108.     If you get duplicates upon linking for malloc et al, say -DHIDEMYMALLOC.
  109.     Turn on support for 64-bit integers (long longs) with -DQUAD.
  110.  
  111. 5)  make test
  112.  
  113.     This will run the regression tests on the perl you just made.
  114.     If it doesn't say "All tests successful" then something went wrong.
  115.     See the README in the t subdirectory.  Note that you can't run it
  116.     in background if this disables opening of /dev/tty.  If "make test"
  117.     bombs out, just cd to the t directory and run TEST by hand to see if
  118.     it makes any difference.  If individual tests bomb, you can run
  119.     them by hand, e.g., ./perl op/groups.t
  120.  
  121. 6)  make install
  122.  
  123.     This will put perl into a public directory (such as /usr/local/bin).
  124.     It will also try to put the man pages in a reasonable place.  It will not
  125.     nroff the man page, however.  You may need to be root to do this.  If
  126.     you are not root, you must own the directories in question and you should
  127.     ignore any messages about chown not working.
  128.  
  129. 7)  Read the manual entry before running perl.
  130.  
  131. 8)  IMPORTANT!  Help save the world!  Communicate any problems and suggested
  132.     patches to me, lwall@netlabs.com (Larry Wall), so we can
  133.     keep the world in sync.  If you have a problem, there's someone else
  134.     out there who either has had or will have the same problem.
  135.  
  136.     If possible, send in patches such that the patch program will apply them.
  137.     Context diffs are the best, then normal diffs.  Don't send ed scripts--
  138.     I've probably changed my copy since the version you have.  It's also
  139.     helpful if you send the output of "uname -a".
  140.  
  141.     Watch for perl patches in comp.lang.perl.  Patches will generally be
  142.     in a form usable by the patch program.  If you are just now bringing up
  143.     perl and aren't sure how many patches there are, write to me and I'll
  144.     send any you don't have.  Your current patch level is shown in patchlevel.h.
  145.  
  146.  
  147. Just a personal note:  I want you to know that I create nice things like this
  148. because it pleases the Author of my story.  If this bothers you, then your
  149. notion of Authorship needs some revision.  But you can use perl anyway. :-)
  150.  
  151.                             The author.
  152.